home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19951130-19960209 / 000329_news@columbia.edu _Tue Jan 23 11:21:15 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  4KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id LAA16733 for <kermit.misc@watsun>; Tue, 23 Jan 1996 11:21:13 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id LAA12315 for kermit.misc@watsun; Tue, 23 Jan 1996 11:21:09 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: K95 has problem with Microcom modem
  8. Date: 23 Jan 1996 16:20:36 GMT
  9. Organization: Columbia University
  10. Lines: 82
  11. Message-ID: <4e31sk$c0i@apakabar.cc.columbia.edu>
  12. References: <4dpf60$jh8@kirin.wwa.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15.  
  16. In article <4dpf60$jh8@kirin.wwa.com>,  <jjacobus@wwa.com> wrote:
  17. : I just installed K95 (v1.1.2) today. The dialer doesn't work with my
  18. : Microm DeskPort Fast EP 28.8.
  19. : Modem is configured as "microcom-at".  Dialer fails when it tries to
  20. : initialize the modem. I set "require carrier" to "off" for an entry,
  21. : tried again, still no luck. I can manually dial with no problem, so baud
  22. : rate, flow control, etc. are ok.
  23. Please do this:
  24.  
  25.  . Start K95.EXE (without the Dialer).
  26.  
  27.  . Give the following commands at the prompt:
  28.  
  29.      set modem type microcom-at
  30.      set port <whatever>
  31.      log debug
  32.      dial <whatever>
  33.      close debug
  34.  
  35.  . Send me the resulting debug.log file.
  36.  
  37. : Since the dialer takes control after K95.INI and K95CUSTOM.INI, I can't
  38. : see a way of creating a custom modem configuration.
  39. See item 22 in the BUGS.DOC file.  Quoting:
  40.  
  41. 22. SET MODEM commands in K95CUSTOM.INI have no effect (K)
  42.  
  43. Symptom         Modem customization commands added to K95CUSTOM.INI seem
  44.                 to have no effect when launching a connection from the Dialer,
  45.                 even though they do work correctly when when K95.EXE is
  46.                 started without the Dialer.
  47.  
  48. Diagnosis       The Dialer generates a SET MODEM TYPE <type> command that is
  49.                 executed by K95.EXE after the K95CUSTOM.INI file is executed.
  50.                 The SET MODEM TYPE command reinitializes all of the SET MODEM
  51.                 modem parameters from an internal table, thus overriding the
  52.                 customizations you made in the INI file.
  53.  
  54. Workaround      Bypass the Dialer if you need to use customized modem
  55.                 parameters or a user-defined modem type.
  56.  
  57. Cure            Fixed in version 1.1.1.
  58.  
  59. The fix was that the command list composed by the Dialer used to say:
  60.  
  61.   set modem type <whatever>
  62.  
  63. but in 1.1.1 and later it says:
  64.  
  65.   if not equal "\v(modem)" "<whatever>" set modem type <whatever>
  66.  
  67. Thus you should be able to give commands like this in your K95CUSTOM.INI:
  68.  
  69.   set modem type microcom-at
  70.   set modem command xxx yyy
  71.   set modem command xxx yyy
  72.   set modem command xxx yyy
  73.   ....
  74.  
  75. And then, when making a connection using the Dialer and with the
  76. "microcom-at" modem type selected in the Dialer, the "set modem" command
  77. should be skipped (since it was already set in K95CUSTOM.INI), and
  78. therefore the built-in modem commands will not be reloaded and therefore
  79. will not overwrite the ones you put in your K95CUSTOM.INI file.
  80.  
  81. You can check what the Dialer is doing by adding the following command
  82. to your K95CUSTOM.INI file:
  83.  
  84.   set startup-file keep
  85.  
  86. The command list that the Dialer constructs is stored in the file:
  87.  
  88.   <K95-directory>\TMP\<Connection-name>.INI
  89.  
  90. In any case, we'll be able to handle this more expeditiously by direct
  91. email, so please follow up with me.
  92.  
  93. - Frank